/* dormakaba pextra+ Sayfa Stilleri */

/* Kırmızı Çizgi Efekti - Section alt kısmında */
.red-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #b80211 0%, #f93f48 50%, #b80211 100%);
    box-shadow: 0 0 15px rgba(242, 39, 70, 0.8);
    z-index: 10;
    overflow: hidden;
}

/* Beyaz ışın efekti - kırmızı çizgi üzerinde */
.red-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 35%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 30%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0.4) 70%,
        transparent 100%
    );
    animation: slideRedLight 6s ease-in-out infinite;
    animation-delay: 3s;
    z-index: 3;
}

@keyframes slideRedLight {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: -100%;
    }
}

/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

.dormakaba-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #c41e3a 0%, #8b1429 100%);
    color: white;
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 50%,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(255, 255, 255, 0.08) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.feature-badge span {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 1.8rem;
    color: #c41e3a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 0.95rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Solutions Section */
.solutions-section {
    padding: 80px 0 100px 0;
    background: #dadada;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Noktalı animasyon arka plan */
.solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(
            circle at 20% 30%,
            rgba(196, 30, 58, 0.35) 3px,
            transparent 3px
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(196, 30, 58, 0.3) 2px,
            transparent 2px
        ),
        radial-gradient(
            circle at 40% 60%,
            rgba(196, 30, 58, 0.28) 2.5px,
            transparent 2.5px
        );
    background-size: 60px 60px, 100px 100px, 80px 80px;
    background-position: 0 0, 50px 50px, 25px 25px;
    animation: redDotsMove 25s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes redDotsMove {
    0% {
        background-position: 0 0, 50px 50px, 25px 25px;
    }

    100% {
        background-position: 60px 60px, 150px 150px, 105px 105px;
    }
}

.solutions-section .container {
    position: relative;
    z-index: 1;
}

.solutions-alt {
    background: #e5e5e5;
}

.solutions-alt::before {
    background-image: radial-gradient(
            circle at 30% 40%,
            rgba(196, 30, 58, 0.32) 3px,
            transparent 3px
        ),
        radial-gradient(
            circle at 70% 60%,
            rgba(196, 30, 58, 0.28) 2px,
            transparent 2px
        );
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
}

.solution-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(196, 30, 58, 0.7),
        0 0 50px rgba(196, 30, 58, 0.6), 0 0 80px rgba(196, 30, 58, 0.5);
}

.solution-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-image img {
    transform: scale(1.05);
}

.solution-content {
    padding: 25px;
}

.solution-content h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.solution-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Keys Section */
.keys-section {
    padding: 80px 0;
    background: #dadada;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Noktalı animasyon arka plan */
.keys-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(
            circle at 25% 35%,
            rgba(196, 30, 58, 0.34) 3px,
            transparent 3px
        ),
        radial-gradient(
            circle at 75% 65%,
            rgba(196, 30, 58, 0.3) 2px,
            transparent 2px
        );
    background-size: 70px 70px, 110px 110px;
    background-position: 0 0, 60px 60px;
    animation: redDotsMove 25s linear infinite;
    z-index: 0;
    pointer-events: none;
}

.keys-section .container {
    position: relative;
    z-index: 1;
}

.keys-alt {
    background: #dadada;
}

.keys-alt::before {
    background-image: radial-gradient(
            circle at 35% 45%,
            rgba(196, 30, 58, 0.32) 3px,
            transparent 3px
        ),
        radial-gradient(
            circle at 65% 55%,
            rgba(196, 30, 58, 0.28) 2px,
            transparent 2px
        );
}

.keys-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
}

.key-card {
    background: #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.keys-alt .key-card {
    background: #ffffff;
}

.key-card:hover {
    border-color: #c41e3a;
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(196, 30, 58, 0.7),
        0 0 50px rgba(196, 30, 58, 0.6), 0 0 80px rgba(196, 30, 58, 0.5);
}

.key-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.key-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.key-content {
    padding: 25px;
}

.key-content h3 {
    font-size: 1.05rem;
    color: #c41e3a;
    margin-bottom: 12px;
    font-weight: 600;
}

.key-content p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
}

/* Lock Types Section */
.lock-types-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #dadada 0%, #e5e5e5 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Noktalı animasyon arka plan */
.lock-types-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(
            circle at 15% 25%,
            rgba(196, 30, 58, 0.35) 3px,
            transparent 3px
        ),
        radial-gradient(
            circle at 85% 75%,
            rgba(196, 30, 58, 0.3) 2px,
            transparent 2px
        );
    background-size: 65px 65px, 105px 105px;
    background-position: 0 0, 55px 55px;
    animation: redDotsMove 25s linear infinite;
    z-index: 0;
    pointer-events: none;
}

.lock-types-section .container {
    position: relative;
    z-index: 1;
}

.lock-types-alt {
    background: linear-gradient(to bottom, #e5e5e5 0%, #dadada 100%);
}

.lock-types-alt::before {
    background-image: radial-gradient(
            circle at 20% 40%,
            rgba(196, 30, 58, 0.34) 3px,
            transparent 3px
        ),
        radial-gradient(
            circle at 80% 60%,
            rgba(196, 30, 58, 0.3) 2px,
            transparent 2px
        );
}

.lock-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
}

.lock-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    position: relative;
}

.lock-card:hover {
    border-left-color: #c41e3a;
    box-shadow: 0 15px 45px rgba(196, 30, 58, 0.7),
        0 0 50px rgba(196, 30, 58, 0.6), 0 0 80px rgba(196, 30, 58, 0.5);
    transform: translateX(5px);
}

.lock-image {
    width: 100%;
    height: 220px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lock-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 30px;
}

.lock-content h3 {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.lock-content p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
}

/* Common Key Section */
.common-key-section {
    padding: 80px 0;
    background: #dadada;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Noktalı animasyon arka plan */
.common-key-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(
            circle at 30% 20%,
            rgba(196, 30, 58, 0.35) 3px,
            transparent 3px
        ),
        radial-gradient(
            circle at 70% 80%,
            rgba(196, 30, 58, 0.3) 2px,
            transparent 2px
        );
    background-size: 75px 75px, 115px 115px;
    background-position: 0 0, 65px 65px;
    animation: redDotsMove 25s linear infinite;
    z-index: 0;
    pointer-events: none;
}

.common-key-section .container {
    position: relative;
    z-index: 1;
}

.common-key-alt {
    background: #e5e5e5;
}

.common-key-alt::before {
    background-image: radial-gradient(
            circle at 40% 30%,
            rgba(196, 30, 58, 0.34) 3px,
            transparent 3px
        ),
        radial-gradient(
            circle at 60% 70%,
            rgba(196, 30, 58, 0.3) 2px,
            transparent 2px
        );
}

.common-key-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
}

.common-key-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.common-key-alt .common-key-card {
    background: #e5e5e5;
}

.common-key-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(196, 30, 58, 0.7),
        0 0 50px rgba(196, 30, 58, 0.6), 0 0 80px rgba(196, 30, 58, 0.5);
}

.common-key-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.common-key-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.common-key-content {
    padding: 25px;
}

.common-key-content h3 {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.common-key-content p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
}

/* Master Key Section */
.master-key-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.master-key-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.master-key-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
}

.master-key-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.master-key-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #c41e3a;
}

.feature-icon {
    font-size: 1.5rem;
}

.master-key-description {
    background: rgba(196, 30, 58, 0.1);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #c41e3a;
    margin: 25px 0;
}

.master-key-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-primary {
    background: #c41e3a;
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #8b1429;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.master-key-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.master-key-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Security Features Section */
.security-features-section {
    padding: 80px 0;
    background: #e5e5e5;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.security-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 50px;
    width: 100%;
}

.security-feature {
    text-align: center;
    padding: 30px 20px;
    background: #d0d0d0;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.security-feature:hover {
    border-color: #c41e3a;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.1);
    transform: translateY(-5px);
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #c41e3a 0%, #8b1429 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.2);
}

.security-feature h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.security-feature p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

/* Swiss Engineering Section */
.swiss-engineering-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.swiss-content {
    max-width: 900px;
    margin: 0 auto;
}

.swiss-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.swiss-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.swiss-highlight {
    background: rgba(196, 30, 58, 0.2);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #c41e3a;
    font-size: 1.05rem !important;
    font-weight: 600;
    margin-top: 30px !important;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #c41e3a 0%, #8b1429 100%);
    color: white;
    text-align: center;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #c41e3a;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: #f5f5f5;
}

@keyframes slideRedLight {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .master-key-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .master-key-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .solutions-grid,
    .keys-grid,
    .lock-grid,
    .common-key-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-features {
        flex-direction: column;
        align-items: stretch;
    }

    .feature-badge {
        text-align: center;
    }

    .master-key-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
    }

    .security-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .swiss-content h2 {
        font-size: 1.6rem;
    }

    .swiss-content p {
        font-size: 0.9rem;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero-section {
        padding: 40px 0 30px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .solutions-section,
    .keys-section,
    .lock-types-section,
    .common-key-section,
    .master-key-section,
    .security-features-section,
    .swiss-engineering-section,
    .cta-section {
        padding: 40px 0;
    }

    .solution-card,
    .key-card,
    .lock-card,
    .common-key-card {
        margin-bottom: 15px;
    }

    .solutions-grid,
    .keys-grid,
    .lock-grid,
    .common-key-grid,
    .security-features-grid {
        gap: 12px;
    }
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solution-card,
.key-card,
.lock-card,
.common-key-card,
.security-feature {
    animation: fadeIn 0.6s ease forwards;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Lightbox Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 58, 0.8);
    border-radius: 50%;
}

.modal-close:hover {
    background: rgba(196, 30, 58, 1);
    transform: rotate(90deg);
}

#modalCaption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    max-width: 80%;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Resim hover efekti */
.solution-image img:hover,
.key-image img:hover,
.lock-image img:hover,
.common-key-image img:hover,
.master-key-image img:hover {
    opacity: 0.9;
}

/* Mobile için modal ayarları */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        max-height: 80%;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }

    #modalCaption {
        bottom: 20px;
        font-size: 0.9rem;
        padding: 10px 20px;
        max-width: 90%;
    }
}
